1 : <?php
2 : /*--------------------------------------------------------------------------+
3 : This file is part of eStudy.
4 : ressourcen/classes/archiver/class.archiverexception.inc.php
5 : - Module group: File Manager
6 : - Description: Class "ArchiverException"
7 : - Version: $Id: class.archiverexception.inc.php 2348 2009-06-04 13:29:47Z commana $
8 : - Author(s): Bjoern Kasteleiner <bjoern.kasteleiner@mni.fh-giessen.de>
9 : +---------------------------------------------------------------------------+
10 : This program is free software; you can redistribute it and/or
11 : modify it under the terms of the GNU General Public License
12 : as published by the Free Software Foundation; either version 2
13 : of the License, or any later version.
14 : +---------------------------------------------------------------------------+
15 : This program is distributed in the hope that it will be useful,
16 : but WITHOUT ANY WARRANTY; without even the implied warranty of
17 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 : GNU General Public License for more details.
19 : You should have received a copy of the GNU General Public License
20 : along with this program; if not, write to the Free Software
21 : Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 : +--------------------------------------------------------------------------*/
23 :
24 : /**
25 : * Class for selective Exception handling in the archiver classes.
26 : *
27 : * The intention is, that this class should be left empty.
28 : *
29 : * @author Bjoern Kasteleiner <bjoern.kasteleiner@mni.fh-giessen.de>
30 : * @version $Id: class.archiverexception.inc.php 2348 2009-06-04 13:29:47Z commana $
31 : */
32 1 : class ArchiverException extends Exception {
33 :
34 : }
35 :
|